Blog

Brad Wood

August 09, 2012

Spread the word


Share your thoughts

 

ColdBox gives you several ways to deal with unhandled exceptions in your application such as the exceptionHandler event and the onException interception point to name a couple.  With either of those approaches, you can redirect the request to a different event.  If you don't redirect or abort the request though, ColdBox will eventually display the contents of your error template.  
 
By default the error template is /coldbox/system/includes/BugReport.cfm.  This file has the familiar "Oops! Exception Encountered" header.  While BugReport.cfm is chock-full of juicy error details (including the SQL of queries that errored), it isn't the kind of information you want to be revealing to the general public.  
 
This is where your customErrorTemplate setting from the ColdBox config file comes in.  Set this to the path of the page you want your users to see when something goes wrong on the site.  
 
settings.customErrorTemplate = "/includes/sorry.cfm";
 
You'll probably want to display a comforting message, a link to your webmaster's E-mail address, or your customer service number.  If you're feeling cheeky, you could try an octocat, or fail whale.  :)  Remember, your custom error template is NOT a view.  It won't be rendered inside your site layout and it won't have access to variables a view normally gets, but it will have an exceptionBean object passed in.  You can go digging for what you need with getController(), but 1be careful-- you don't know what kind of state the framework is in.  If you create an error on this page, it will bubble up to the onError method in your application.cfc.
 
 
P.S. This is an excellent place to use environment overrides to use the default error page on your dev and staging server, but the pretty one on production.  Just set the path to the pretty page in your main settings block, and override it with an empty string (which means use the default) in your lower environment overrides.

Add Your Comment

(1)

Oct 10, 2013 17:22:57 UTC

by Tim Brown

What if i just want to return the execption information as JSON so it can be gracefully displayed via my client side code? It doesn't appear I can stop execution within the onException() handler using renderData().noExecution() as renderData is ignored (as stated in the docs). Do I just need to set some headers and return the JSON manually via cfcontent? Thanks!

Recent Entries

Ortus June 2024 Newsletter!

Ortus June 2024 Newsletter!

Welcome to the latest edition of the Ortus Newsletter! This month, we're excited to bring you highlights from our sessions at CFCamp and Open South Code, as well as a sneak peek into our upcoming events. Discover the latest developments in BoxLang, our dynamic new JVM language, and catch up on all the insightful presentations by our expert team. Let's dive in!

Maria Jose Herrera
Maria Jose Herrera
June 28, 2024
BoxLang June 2024 Newsletter!

BoxLang June 2024 Newsletter!

We're thrilled to bring you the latest updates and exciting developments from the world of BoxLang. This month, we're diving into the newest beta release, introducing a new podcast series, showcasing innovative integrations, and sharing insights from recent events. Whether you're a seasoned developer or just getting started, there's something here for everyone to explore and enjoy.

Maria Jose Herrera
Maria Jose Herrera
June 28, 2024
BoxLang 1.0.0 Beta 3 Launched

BoxLang 1.0.0 Beta 3 Launched

We are thrilled to announce the release of BoxLang 1.0.0-Beta 3! This latest beta version is packed with exciting new features and essential bug fixes, including robust encryption functionality, enhanced Java interoperability, and more efficient event handling. Key highlights include the introduction of query caching capabilities, seamless coercion of Java Single Abstract Method (SAM) interfaces from BoxLang functions, and support for virtual thread executors. So, let’s dive into the details of what’s new in BoxLang 1.0.0-Beta 3 and how you can start leveraging these updates today!

Luis Majano
Luis Majano
June 28, 2024